home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 January / PCWorld_2002-01_cd.bin / Novinky / Becher / 1. Zlaty Kalich / ZlatyKalich.exe / scripts / DefineButton2_2351 / BUTTONCONDACTION on(press).as
Text File  |  2001-11-12  |  262b  |  17 lines

  1. on(press){
  2.    _root.romkecy = "";
  3.    x = random(3);
  4.    if(x == 0)
  5.    {
  6.       _root.image.gotoAndPlay("star");
  7.    }
  8.    else if(x == 1)
  9.    {
  10.       _root.image.gotoAndPlay("square");
  11.    }
  12.    else
  13.    {
  14.       _root.image.gotoAndPlay("circle");
  15.    }
  16. }
  17.